summaryrefslogtreecommitdiff
path: root/app/[lng]/procurement/(procurement)/system/layout.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-12-01 19:52:06 +0900
committerjoonhoekim <26rote@gmail.com>2025-12-01 19:52:06 +0900
commit44b74ff4170090673b6eeacd8c528e0abf47b7aa (patch)
tree3f3824b4e2cb24536c1677188b4cae5b8909d3da /app/[lng]/procurement/(procurement)/system/layout.tsx
parent4953e770929b82ef77da074f77071ebd0f428529 (diff)
(김준회) deprecated code 정리
Diffstat (limited to 'app/[lng]/procurement/(procurement)/system/layout.tsx')
-rw-r--r--app/[lng]/procurement/(procurement)/system/layout.tsx80
1 files changed, 0 insertions, 80 deletions
diff --git a/app/[lng]/procurement/(procurement)/system/layout.tsx b/app/[lng]/procurement/(procurement)/system/layout.tsx
deleted file mode 100644
index 2776ed8b..00000000
--- a/app/[lng]/procurement/(procurement)/system/layout.tsx
+++ /dev/null
@@ -1,80 +0,0 @@
-import { Metadata } from "next"
-
-import { Separator } from "@/components/ui/separator"
-import { SidebarNav } from "@/components/layout/sidebar-nav"
-
-export const metadata: Metadata = {
- title: "System Setting",
- // description: "Advanced form example using react-hook-form and Zod.",
-}
-
-
-interface SettingsLayoutProps {
- children: React.ReactNode
- params: { lng: string }
-}
-
-export default async function SettingsLayout({
- children,
- params,
-}: {
- children: React.ReactNode
- params: { lng: string }
-}) {
- const resolvedParams = await params
- const lng = resolvedParams.lng
-
-
- const sidebarNavItems = [
-
- {
- title: "삼성중공업 사용자",
- href: `/${lng}/evcp/system`,
- },
- {
- title: "Roles",
- href: `/${lng}/evcp/system/roles`,
- },
- {
- title: "권한 통제",
- href: `/${lng}/evcp/system/permissions`,
- },
- {
- title: "협력업체 사용자",
- href: `/${lng}/evcp/system/admin-users`,
- },
-
- {
- title: "비밀번호 정책",
- href: `/${lng}/evcp/system/password-policy`,
- },
-
- ]
-
-
- return (
- <>
- <div className="container py-6">
- <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow">
- <div className="hidden space-y-6 p-10 pb-16 md:block">
- <div className="space-y-0.5">
- <h2 className="text-2xl font-bold tracking-tight">시스템 설정</h2>
- {/* <p className="text-muted-foreground">
- 사용자, 롤, 접근 권한을 관리하세요.
- </p> */}
- </div>
- <Separator className="my-6" />
- <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0">
- <aside className="-mx-4 lg:w-1/5">
- <SidebarNav items={sidebarNavItems} />
- </aside>
- <div className="flex-1 ">{children}</div>
- </div>
- </div>
- </section>
- </div>
-
-
- </>
- )
-}